home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 2 of 3.iso / chapter4 / querysib.c < prev    next >
C/C++ Source or Header  |  1996-03-06  |  8KB  |  285 lines

  1.  
  2. #include <windows.h>  
  3. #include "querysib.h"  
  4. #include "commctrl.h"
  5.  
  6.  
  7. #if defined (WIN32)
  8.     #define IS_WIN32 TRUE
  9. #else
  10.     #define IS_WIN32 FALSE
  11. #endif
  12.  
  13. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  14. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  15. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  16.  
  17. HINSTANCE hInst;   // current instance
  18.  
  19. LPCTSTR lpszAppName = "MyApp";
  20. LPCTSTR lpszTitle   = "PropSheet_QuerySiblings"; 
  21.  
  22.  
  23. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  24.  
  25.  
  26. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  27.                       LPTSTR lpCmdLine, int nCmdShow)
  28. {
  29.    MSG      msg;
  30.    HWND     hWnd; 
  31.    WNDCLASS wc;
  32.  
  33.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  34.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  35.    wc.cbClsExtra    = 0;                      
  36.    wc.cbWndExtra    = 0;                      
  37.    wc.hInstance     = hInstance;              
  38.    wc.hIcon         = LoadIcon (hInstance, lpszAppName); 
  39.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  40.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  41.    wc.lpszMenuName  = lpszAppName;              
  42.    wc.lpszClassName = lpszAppName;              
  43.  
  44.    if ( IS_WIN95 )
  45.    {
  46.       if ( !RegisterWin95( &wc ) )
  47.          return( FALSE );
  48.    }
  49.    else if ( !RegisterClass( &wc ) )
  50.       return( FALSE );
  51.  
  52.    hInst = hInstance; 
  53.  
  54.    hWnd = CreateWindow( lpszAppName, 
  55.                         lpszTitle,    
  56.                         WS_OVERLAPPEDWINDOW, 
  57.                         CW_USEDEFAULT, 0, 
  58.                         CW_USEDEFAULT, 0,  
  59.                         NULL,              
  60.                         NULL,              
  61.                         hInstance,         
  62.                         NULL               
  63.                       );
  64.  
  65.    if ( !hWnd ) 
  66.       return( FALSE );
  67.  
  68.    ShowWindow( hWnd, nCmdShow ); 
  69.    UpdateWindow( hWnd );         
  70.  
  71.    while( GetMessage( &msg, NULL, 0, 0) )   
  72.    {
  73.       TranslateMessage( &msg ); 
  74.       DispatchMessage( &msg );  
  75.    }
  76.  
  77.    return( msg.wParam ); 
  78. }
  79.  
  80.  
  81. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  82. {
  83.    WNDCLASSEX wcex;
  84.  
  85.    wcex.style         = lpwc->style;
  86.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  87.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  88.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  89.    wcex.hInstance     = lpwc->hInstance;
  90.    wcex.hIcon         = lpwc->hIcon;
  91.    wcex.hCursor       = lpwc->hCursor;
  92.    wcex.hbrBackground = lpwc->hbrBackground;
  93.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  94.    wcex.lpszClassName = lpwc->lpszClassName;
  95.  
  96.    // Added elements for Windows 95.
  97.    //...............................
  98.    wcex.cbSize = sizeof(WNDCLASSEX);
  99.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  100.                             IMAGE_ICON, 16, 16,
  101.                             LR_DEFAULTCOLOR );
  102.             
  103.    return RegisterClassEx( &wcex );
  104. }
  105.  
  106.  
  107. LRESULT CALLBACK EditProc( HWND hDlg, UINT message,        
  108.                            WPARAM wParam, LPARAM lParam )
  109. {
  110.    switch (message) 
  111.    {
  112.        case WM_INITDIALOG: 
  113.              return (TRUE);
  114.  
  115.        case WM_COMMAND :
  116.              switch( LOWORD( wParam ) )
  117.              {
  118.                 case IDC_EDIT1 :
  119.                 case IDC_EDIT2 :
  120.                 case IDC_EDIT3 :
  121.                         if ( HIWORD( wParam ) == EN_CHANGE )
  122.                         {
  123.                            if ( PropSheet_QuerySiblings( GetParent( hDlg ), 0, 0 ) )
  124.                               PropSheet_Changed( GetParent( hDlg ), hDlg );
  125.                         }
  126.                         break;
  127.              }
  128.              break;
  129.  
  130.        case WM_NOTIFY :
  131.              if ( ((NMHDR*)lParam)->code == PSN_APPLY )
  132.              {
  133.                 // Apply changes.
  134.  
  135.                 // Gray out the Apply.
  136.                 //....................
  137.                 PropSheet_UnChanged( GetParent( hDlg ), hDlg );
  138.              }
  139.              break;
  140.    }
  141.  
  142.    return( FALSE );
  143. }
  144.  
  145.  
  146. LRESULT CALLBACK CheckProc( HWND hDlg, UINT message,        
  147.                             WPARAM wParam, LPARAM lParam )
  148. {
  149.    switch (message) 
  150.    {
  151.        case WM_INITDIALOG: 
  152.              return (TRUE);
  153.  
  154.        case PSM_QUERYSIBLINGS :
  155.              if ( IsDlgButtonChecked( hDlg, IDC_CHECK1 ) || 
  156.                   IsDlgButtonChecked( hDlg, IDC_CHECK2 ) )
  157.              {
  158.                 SetWindowLong( hDlg, DWL_MSGRESULT, TRUE );
  159.                 return( TRUE );
  160.              }
  161.              break;
  162.    }
  163.  
  164.    return( FALSE );
  165. }
  166.  
  167.  
  168. LRESULT CALLBACK RadioProc( HWND hDlg, UINT message,        
  169.                             WPARAM wParam, LPARAM lParam )
  170. {
  171.    switch (message) 
  172.    {
  173.        case WM_INITDIALOG: 
  174.              return (TRUE);
  175.  
  176.        case PSM_QUERYSIBLINGS :
  177.              if ( IsDlgButtonChecked( hDlg, IDC_RADIO1 ) ||
  178.                   IsDlgButtonChecked( hDlg, IDC_RADIO2 ) ||
  179.                   IsDlgButtonChecked( hDlg, IDC_RADIO3 ) )
  180.              {
  181.                 SetWindowLong( hDlg, DWL_MSGRESULT, TRUE );
  182.                 return( TRUE );
  183.              }
  184.              break;
  185.    }
  186.  
  187.    return( FALSE );
  188. }
  189.  
  190.  
  191. VOID DisplayProperties( HWND hWnd )
  192. {
  193.    PROPSHEETPAGE   psp;
  194.    PROPSHEETHEADER psh;
  195.    HPROPSHEETPAGE  hpsp[3];
  196.  
  197.    psp.dwSize      = sizeof( PROPSHEETPAGE );
  198.    psp.dwFlags     = PSP_DEFAULT;
  199.    psp.hInstance   = hInst;
  200.    psp.pszTemplate = "EDITPAGE";
  201.    psp.pfnDlgProc  = (DLGPROC)EditProc;
  202.    hpsp[0] = CreatePropertySheetPage( &psp );
  203.  
  204.    psp.pszTemplate = "CHECKPAGE";
  205.    psp.pfnDlgProc  = (DLGPROC)CheckProc;
  206.    hpsp[1] = CreatePropertySheetPage( &psp );
  207.  
  208.    psp.pszTemplate = "RADIOPAGE";
  209.    psp.pfnDlgProc  = (DLGPROC)RadioProc;
  210.    hpsp[2] = CreatePropertySheetPage( &psp );
  211.  
  212.    memset( &psh, 0, sizeof( PROPSHEETHEADER ) );
  213.    psh.dwSize     = sizeof( PROPSHEETHEADER );
  214.    psh.dwFlags    = PSH_USEICONID;
  215.    psh.hInstance  = hInst;
  216.    psh.hwndParent = hWnd;
  217.    psh.pszIcon    = "SMALL";
  218.    psh.nPages     = 3;
  219.    psh.phpage     = hpsp;
  220.    psh.pszCaption = "Properties";
  221.  
  222.    PropertySheet( &psh );
  223. }
  224.  
  225.  
  226. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  227. {
  228.    switch( uMsg )
  229.    {
  230.       case WM_CREATE :
  231.               InitCommonControls();
  232.               break;
  233.  
  234.       case WM_COMMAND :
  235.               switch( LOWORD( wParam ) )
  236.               {
  237.                  case IDM_TEST :
  238.                         DisplayProperties( hWnd );
  239.                         break;
  240.  
  241.                  case IDM_ABOUT :
  242.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  243.                         break;
  244.  
  245.                  case IDM_EXIT :
  246.                         DestroyWindow( hWnd );
  247.                         break;
  248.               }
  249.               break;
  250.       
  251.       case WM_DESTROY :
  252.               PostQuitMessage(0);
  253.               break;
  254.  
  255.       default :
  256.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  257.    }
  258.  
  259.    return( 0L );
  260. }
  261.  
  262.  
  263. LRESULT CALLBACK About( HWND hDlg,           
  264.                         UINT message,        
  265.                         WPARAM wParam,       
  266.                         LPARAM lParam)
  267. {
  268.    switch (message) 
  269.    {
  270.        case WM_INITDIALOG: 
  271.                return (TRUE);
  272.  
  273.        case WM_COMMAND:                              
  274.                if (   LOWORD(wParam) == IDOK         
  275.                    || LOWORD(wParam) == IDCANCEL)    
  276.                {
  277.                        EndDialog(hDlg, TRUE);        
  278.                        return (TRUE);
  279.                }
  280.                break;
  281.    }
  282.  
  283.    return (FALSE); 
  284. }
  285.